home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_qt.idb / usr / freeware / include / Qt / qsocketnotifier.h.z / qsocketnotifier.h
Encoding:
C/C++ Source or Header  |  1998-10-28  |  1.8 KB  |  75 lines

  1. /****************************************************************************
  2. ** $Id: qsocketnotifier.h,v 2.5 1998/07/03 00:09:41 hanord Exp $
  3. **
  4. ** Definition of QSocketNotifier class
  5. **
  6. ** Created : 951114
  7. **
  8. ** Copyright (C) 1992-1998 Troll Tech AS.  All rights reserved.
  9. **
  10. ** This file is part of Qt Free Edition, version 1.40.
  11. **
  12. ** See the file LICENSE included in the distribution for the usage
  13. ** and distribution terms, or http://www.troll.no/free-license.html.
  14. **
  15. ** IMPORTANT NOTE: You may NOT copy this file or any part of it into
  16. ** your own programs or libraries.
  17. **
  18. ** Please see http://www.troll.no/pricing.html for information about 
  19. ** Qt Professional Edition, which is this same library but with a
  20. ** license which allows creation of commercial/proprietary software.
  21. **
  22. *****************************************************************************/
  23.  
  24. #ifndef QSOCKETNOTIFIER_H
  25. #define QSOCKETNOTIFIER_H
  26.  
  27. #ifndef QT_H
  28. #include "qobject.h"
  29. #endif // QT_H
  30.  
  31.  
  32. class QSocketNotifier : public QObject
  33. {
  34.     Q_OBJECT
  35. public:
  36.     enum Type { Read, Write, Exception };
  37.  
  38.     QSocketNotifier( int socket, Type, QObject *parent=0, const char *name=0 );
  39.    ~QSocketNotifier();
  40.  
  41.     int        socket()    const;
  42.     Type    type()        const;
  43.  
  44.     bool    isEnabled()    const;
  45.     void    setEnabled( bool );
  46.  
  47. signals:
  48.     void    activated( int socket );
  49.  
  50. protected:
  51.     bool    event( QEvent * );
  52.  
  53. private:
  54.     int        sockfd;
  55.     Type    sntype;
  56.     bool    snenabled;
  57.  
  58. private:    // Disabled copy constructor and operator=
  59.     QSocketNotifier( const QSocketNotifier & );
  60.     QSocketNotifier &operator=( const QSocketNotifier & );
  61. };
  62.  
  63.  
  64. inline int QSocketNotifier::socket() const
  65. { return sockfd; }
  66.  
  67. inline QSocketNotifier::Type QSocketNotifier::type() const
  68. { return sntype; }
  69.  
  70. inline bool QSocketNotifier::isEnabled() const
  71. { return snenabled; }
  72.  
  73.  
  74. #endif // QSOCKETNOTIFIER_H
  75.